home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility2 / winck30n.zip / DDE_SDK.ZI$ / PAYROLL.H < prev    next >
Text File  |  1991-10-16  |  1KB  |  46 lines

  1. #define WM_MYCOMMAND (WM_USER+1000)
  2.  
  3. #define IDD_GROSS       100
  4. #define IDD_FED         101
  5. #define IDD_STATE       102
  6. #define IDD_LOCAL       103
  7. #define IDD_FICA        104
  8. #define IDD_OTHER1      105
  9. #define IDD_OTHER2      106
  10. #define IDD_OTHER3      107
  11. #define IDD_OTHER4      108
  12. #define IDD_OTHER5      109
  13.  
  14. #define IDD_C_GROSS     (IDD_GROSS  +100)
  15. #define IDD_C_FED       (IDD_FED    +100)
  16. #define IDD_C_STATE     (IDD_STATE  +100)
  17. #define IDD_C_LOCAL     (IDD_LOCAL  +100)
  18. #define IDD_C_FICA      (IDD_FICA   +100)
  19. #define IDD_C_OTHER1    (IDD_OTHER1 +100)
  20. #define IDD_C_OTHER2    (IDD_OTHER2 +100)
  21. #define IDD_C_OTHER3    (IDD_OTHER3 +100)
  22. #define IDD_C_OTHER4    (IDD_OTHER4 +100)
  23. #define IDD_C_OTHER5    (IDD_OTHER5 +100)
  24.  
  25. #define IDD_NETPAY      120
  26. #define IDD_REPAINT     121
  27. #define IDD_MEMORIZE    122
  28.  
  29. #define IDM_MODAL       1000
  30.  
  31. //---------------------- MONEY, used to avoid floating point anything
  32.  
  33. typedef struct tagMONEY
  34.   {
  35.   LONG      Dollars;            // 4 
  36.   int       Cents;              // 2 
  37.   }                             // --
  38. MONEY;                          // 4 bytes total
  39.  
  40. typedef MONEY FAR  *LPMONEY;
  41. typedef MONEY NEAR *PMONEY;
  42.  
  43. #define PLAIN    0
  44. #define COMMAS   1
  45. #define CURRENCY 2
  46.